home *** CD-ROM | disk | FTP | other *** search
- /****i* SOURCE_FILE/INFO
- *
- * NAME
- * Alias.js
- *
- * USAGE
- * Part of WPS JavaScript Library.
- *
- * COPYRIGHT
- * Copyright ⌐ 2000-2001 Website Pros, Inc.
- * All Rights Reserved.
- *
- * This is an unpublished work protected by Website Pros, Inc.
- * as a trade secret, and is not to be used or disclosed except as
- * expressly provided in a written license agreement executed by
- * you and Website Pros, Inc.
- *
- * <copyright@websitepros.com>
- *
- * NOTES
- * JavaScript code.
- *
- *****/
- if (!IS.isModuleInitialized("IS.NOF.PUBLISH.Alias"))
- {
- /**
- * Class Alias
- **/
- function NOF_Alias( /*String*/ url, /*String*/ path) {
- this.__proto__ = NOF_Alias.prototype;
-
- this.aliasURL = url;
- this.aliasPath = path;
-
- return this;
- }
- {
- var members = NOF_Alias.prototype;
- members.CLASS_NAME = "Alias";
-
- var methods = NOF_Alias.prototype;
-
- /**
- * getURL.
- **/
- methods.getURL = function () {
- return this.aliasURL;
- }
- /**
- * setURL.
- **/
- methods.setURL = function (url) {
- this.aliasURL = url;
- }
-
- /**
- * getPath
- **/
- methods.getPath = function () {
- return this.aliasPath;
- }
- /**
- * setPath.
- **/
- methods.setPath = function (path) {
- this.aliasPath = path;
- }
-
- }
-
- NOF.PUBLISH.__proto__.Alias = NOF_Alias;
- }